home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 51741 / 51741.xpi / chrome / content / lib / datesTimes.js < prev    next >
Text File  |  2010-02-01  |  324b  |  15 lines

  1. (function()
  2. {
  3.     // returns current date, format: 2009-12-31
  4.     this.date = function()
  5.     {
  6.         var date = new Date();
  7.         return date.getFullYear() + '-' + 
  8.             (date.getMonth() < 9 ? '0' : '') + (date.getMonth()+1) + '-' +
  9.             (date.getDate() < 10 ? '0' : '') + date.getDate();
  10.     }
  11.  
  12.     return null;
  13.  
  14. }).apply(metaTitleDescriptionOnTop);
  15.